blob: 71ff978272f4e259d9cce599795e106d4c509186 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import styles from "./loading.module.css";
export default function Loading() {
return (
<div className={styles.loadingContainer}>
<p className={styles.loadingText}>Hold tight...Arriving!!</p>
</div>
);
}
|